home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / PASCSRC.ZIP / PASCOMS.PAS < prev    next >
Pascal/Delphi Source File  |  1988-01-15  |  451b  |  16 lines

  1. program Lots_Of_Comments;
  2.  
  3. begin { This is the start of the main program }
  4.  
  5. (* This is a comment that is ignored by the Pascal compiler *)
  6. {  This is also ignored }
  7.  
  8.    Writeln('I am in Pascal school, Dad');      (* Comment *)
  9.    Writeln('All students are always broke');   {Comment}
  10. (*
  11.    Writeln('Send money');
  12.    Writeln('Send money');
  13.     *)
  14.    Writeln('I am really getting hungry');
  15. end. (* This is the end of the main program *)
  16.